home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / demos / npend / maple / makefile < prev    next >
Makefile  |  1999-09-16  |  549b  |  36 lines

  1. SHELL = /bin/sh
  2.  
  3. include ../../../Path.incl
  4. include ../../../Version.incl
  5. include ../../../Makefile.incl
  6.  
  7. FFLAGS = $(FC_OPTIONS)
  8.  
  9. OBJS = /tmp/ener.o /tmp/npend.o /tmp/np.o
  10.  
  11. all:: $(OBJS)
  12.  
  13. /tmp/ener.o: ener.f
  14.     $(FC) $(FFLAGS) -c ener.f  -o /tmp/ener.o
  15.  
  16. clean::
  17.     $(RM) /tmp/ener.o
  18. distclean::
  19.     $(RM) /tmp/ener.o
  20.  
  21. /tmp/np.o: np.f
  22.     $(FC) $(FFLAGS) -c np.f  -o /tmp/np.o
  23.  
  24. clean::
  25.     $(RM) /tmp/np.o
  26. distclean::
  27.     $(RM) /tmp/np.o
  28.  
  29. /tmp/npend.o: npend.f
  30.     $(FC) $(FFLAGS) -c npend.f -o /tmp/npend.o
  31.  
  32. distclean::
  33.     $(RM) /tmp/npend.o
  34. clean::
  35.     $(RM) /tmp/npend.o
  36.